home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Games / Xconq 7.1.0 / lib / future.g < prev    next >
Text File  |  1996-04-04  |  12KB  |  379 lines

  1. (game-module "future"
  2.   (title "2200 AD")
  3.   (blurb "Futuristic period from Jay Scott")
  4.   (variants (world-seen true))
  5.   )
  6.  
  7. (unit-type hovercar (image-name "hovercraft") (char "h")
  8.   (help "easily built, moves fast and captures cities"))
  9. (unit-type groundcar (image-name "tank") (char "g")
  10.   (help "slow but tough, captures cities"))
  11. (unit-type saucer (char "s")
  12.   (help "moves fast, easy to build, but short range"))
  13. (unit-type defender (image-name "delta") (char "d")
  14.   (help "heavy aircraft that defeats subs and saucers"))
  15. (unit-type constructor (image-name "builder") (char "c")
  16.   (help "builds bases anywhere"))
  17. (unit-type mothership (char "m")
  18.   (help "carries aircraft and ground units"))
  19. (unit-type transport-sub (image-name "sub") (char "t")
  20.   (help "quickly built, carries ground units"))
  21. (unit-type attack-sub (image-name "sub") (char "a")
  22.   (help "attacks cities and carries rockets"))
  23. (unit-type rocket (char "R")
  24.   (help "missile that can kill most units and hit cities"))
  25. (unit-type base (char "/") (image-name "saucerpad")
  26.   (help "airstrip + port but no production"))
  27. (unit-type town (image-name "town22") (char "*")
  28.   (help "produces but easily captured and may revolt"))
  29. (unit-type city (image-name "city22") (char "@")
  30.   (help "metropolis - hard to capture"))
  31.  
  32. (material-type fuel (help "used for both movement and combat"))
  33.  
  34. (terrain-type sea (char ".") (color "sky blue"))
  35. (terrain-type shallows (char ",") (color "cyan"))
  36. (terrain-type swamp (char "=") (color "dark gray"))
  37. (terrain-type plains (char "+") (color "green"))
  38. (terrain-type forest (char "%") (color "forest green"))
  39. (terrain-type desert (char "~") (color "yellow"))
  40. (terrain-type mountains (char "^") (color "sienna"))
  41. (terrain-type ice (char "_") (color "white"))
  42. (terrain-type vacuum (char ":") (color "black"))
  43.  
  44. (define h hovercar)
  45. (define g groundcar)
  46. (define s saucer)
  47. (define d defender)
  48. (define c constructor)
  49. (define m mothership)
  50. (define t transport-sub)
  51. (define a attack-sub)
  52. (define R rocket)
  53. (define / base)
  54. (define * town)
  55. (define @ city)
  56.  
  57. (define movers ( h g s d c m t a R ))
  58. (define cities ( / * @ ))
  59.  
  60. (define land ( swamp plains forest desert mountains ice ))
  61.  
  62. ;;; Static relationships.
  63.  
  64. ;; Unit-unit.
  65.  
  66. (table unit-capacity-x
  67.   ;; (shouldn't motherships be able to carry rockets?)
  68.   (m ( h g s d c ) ( 6 4 10 2 1 ))
  69.   (a R 4)
  70.   (t ( h g ) ( 2 1 ))
  71.   )
  72.  
  73. (add cities capacity ( 8 32 32 ))
  74.  
  75. (table unit-size-as-occupant
  76.   (u* u* 99)
  77.   (movers cities 1)
  78.   )
  79.  
  80. ;; Unit-material.
  81.  
  82. (table unit-storage-x (u* fuel ( 30 40 16 16 30 40 200 150 30 500 1000 2000 )))
  83.  
  84. ;;; Vision.
  85.  
  86. ;; Subs have very good stealth.
  87.  
  88. (table visibility (( t a ) t* 0))
  89.  
  90. (add cities see-always 1)
  91.  
  92. ;;; Actions.
  93.  
  94. (add movers acp-per-turn ( 3 1 8 4 3 6 2 3 10 ))
  95. (add cities acp-per-turn ( 0 1 1 ))
  96.  
  97. ;;; Movement.
  98.  
  99. (add cities speed 0)
  100.  
  101. (table mp-to-enter-terrain
  102.   (u* t* 99)
  103.   (h plains 1)
  104.   (h shallows 2)
  105.   (g ( plains desert ) 1)
  106.   (( s d c m ) t* 1)
  107.   (( t a ) ( sea shallows ) 1)
  108.   (R t* 1)
  109.   )
  110.  
  111. (table consumption-per-move (movers fuel 1))
  112.  
  113. ;;; Construction.
  114.  
  115. ;;               h g s d   c  m t a  R
  116. (add movers cp ( 4 6 2 10 10 20 7 12 8 ))
  117. (add / cp 3)
  118.  
  119. (table acp-to-create
  120.   (c / 1)
  121.   ((* @) movers 1)
  122.   )
  123.  
  124. (table acp-to-build
  125.   (c / 1)
  126.   ((* @) movers 1)
  127.   )
  128.  
  129. (table acp-to-toolup
  130.   (c / 1)
  131.   ((* @) movers 1)
  132.   )
  133.  
  134. ;; Future hi-tech needs more elaborate infrastructure, so toolup costs
  135. ;; are high for some types.
  136.  
  137. (table tp-to-build
  138.   (c / 1)
  139.   ;;          h  g  s  d  c  m  t  a  R
  140.   (* movers ( 1  1  1  5  9 10  1  2 25))
  141.   (@ movers ( 1  1  1  5  9 10  1  2 25))
  142.   )
  143.  
  144. (table tp-max
  145.   (c / 1)
  146.   (* movers ( 1  1  1  5  9 10  1  2 25))
  147.   (@ movers ( 1  1  1  5  9 10  1  2 25))
  148.   )
  149.  
  150. ;;; Combat.
  151.  
  152. (add u* hp-max ( 1 1 1 2 2 5 2 2 1 10 20 40 ))
  153.  
  154. (table hit-chance 
  155.   (h u* (  65  60  40  50  50  50   5   5  50  99  99  99 ))
  156.   (g u* (  80  60  50  40  50  50  10  10  50  99  99  99 ))
  157.   (s u* (  50  40  70  10  70  90  10  10  99  99  99  99 ))
  158.   (d u* (  10  10  65  20  70  70  50  50  20  99  99  99 ))
  159.   (c u* (  20  20  10   5  20  10   0   0  20   0   0   0 ))
  160.   (m u* (  15  10  20   5  40  40   0   0  30   0   0   0 ))
  161.   (t u* (   0   0   0   0   0   0   0   0   0   0   0   0 ))
  162.   (a u* (  40  60  10  10  20  20  60  20   0  99  99  99 ))
  163.   (R u* (  99  99  60  80  90  90  70  70  20  99  99  99 ))
  164.   (/ u* (  10  10  10  20   0   0   0  10   0   0   0   0 ))
  165.   (* u* (  30  30  30  40   0   0   0  20   0   0   0   0 ))
  166.   (@ u* (  50  50  50  50   0   0   0  50   0   0   0   0 ))
  167.   ;; Guarantee that the rocket will be destroyed in its attack.
  168.   (u* R 100)
  169.   )
  170.  
  171. (table damage 
  172.   (u* u* 1)
  173.   (a cities 3)
  174.   (R u* 4)
  175.   (R cities 10)
  176.   (@ u* 2)
  177.   )
  178.  
  179. (table capture-chance
  180.   (h cities ( 80 70 20 ))
  181.   (g cities ( 90 80 30 ))
  182.   )
  183.  
  184. (table consumption-per-attack (u* fuel 1))
  185.  
  186. (table hit-by (u* fuel 1))
  187.  
  188. ;;; Other actions.
  189.  
  190. ;; We can always disband units freely.
  191.  
  192. (add u* acp-to-disband 1)
  193.  
  194. (add u* hp-per-disband 100)
  195.  
  196. ;;; Backdrop economy.
  197.  
  198. (table base-production (cities fuel 10))
  199.  
  200. (table base-consumption
  201.   (( s d ) fuel 1)
  202.   (u* fuel 1)    ; not plausible, but helps machine players (???)
  203.   )
  204.  
  205. (table hp-per-starve
  206.   ;; High-tech stuff disintegrates without fuel.
  207.   (u* fuel 1.00)
  208.   )
  209.  
  210. (table out-length
  211.   (movers fuel -1)      ; so low-capacity units don't lose fuel
  212.   (cities fuel 1)
  213.   )
  214.  
  215. (table in-length
  216.   (u* fuel 1)
  217.   )
  218.  
  219. ;;; Scoring.
  220.  
  221. (add cities point-value ( 1 5 25 ))
  222.  
  223. (scorekeeper (do last-side-wins))
  224.  
  225. ;;; Setup.
  226.  
  227. (add t* alt-percentile-min (   0  69  70  70  70  70  95  99   0 ))
  228. (add t* alt-percentile-max (  69  70  72  95  95  95  99 100   0 ))
  229. (add t* wet-percentile-min (   0   0  50  20  80   0   0   0   0 ))
  230. (add t* wet-percentile-max ( 100 100 100  80 100  20 100 100   0 ))
  231.  
  232. (set edge-terrain ice)
  233.  
  234. (add cities start-with ( 0 2 1 ))
  235.  
  236. (table independent-density (* land 100))
  237.  
  238. (table favored-terrain
  239.   (u* t* 0)
  240.   (( * @ ) ( plains ) 100)
  241.   )
  242.  
  243. ;; A game's starting units will be full by default.
  244.  
  245. (table unit-initial-supply (u* m* 9999))
  246.  
  247. ;;; Documentation.
  248.  
  249. (game-module (notes (
  250. "A science fiction Xconq period.
  251. It's weirder and wilder than the historical periods provided with the game.
  252. Lots of things happen faster, so the game is often shorter.
  253. "
  254. "This is in the public domain.
  255. "
  256. " -----  -----  strategy  -----  -----
  257. "
  258. "The game is designed so you need to have at least a few of every
  259. kind of unit to do well in a full game.  (You may be able to get by
  260. without transport subs if you start out on a big continent.)  If
  261. anybody finds they can consistently do well without some kind of unit,
  262. I want to hear how so I can fix it!
  263. "
  264. "Every unit has at least one nemesis which can destroy it relatively
  265. easily.  Your goal should be to fight every battle at an advantage,
  266. pitting each unit against its natural prey--saucers against hovercars,
  267. defenders against saucers, hovercars against defenders.
  268. "
  269. "Rockets ensure that the game doesn't drag on too long.  Invasion is
  270. risky, but when it works the invader wins quickly.  Rockets by contrast
  271. are a slow but steady way to nibble at the enemy production base.
  272. "
  273. "Machine players are especially easy to defeat in this period.  If you're
  274. lucky enough to start near one, you can blitz it with hovercars and
  275. saucers and win in short order.  It takes longer if you're far from
  276. the robot.  Gaining air superiority is usually the first step.
  277. "
  278. "The game hasn't been played by enough people for me to tell what
  279. strategies are best in different circumstances.  If I've done my
  280. job well, the best plan will depend in detail on the opponent and
  281. the situation, and you'll have to think hard.
  282. "
  283. "I'd appreciate any comments.
  284.  
  285.     Jay Scott, August 1987.
  286.     ...bpa!swatsun!scott
  287.        ...seismo!bpa!swatsun!scott"
  288. )))
  289.  
  290. (add hovercar notes '(
  291. "Hovercar.  A fast-moving ground unit that easily captures towns.  A
  292. hovercar floats on an antigravity field, so it can maneuver easily
  293. even in mountainous terrain or shallow water (though not deep ocean).
  294. Hovercars are invaluable in an invasion for their ability to take
  295. cities quickly, but they are easily destroyed by flying saucers or
  296. groundcars."
  297. ))
  298.  
  299. (add groundcar notes '(
  300. "Groundcar.  A slow-moving unit which travels on treads, like today's
  301. tanks.  It can afford to carry a large shield generator, which makes
  302. it tough to destroy.  It can negotiate forests by pushing down the
  303. trees, or burning them away with its gun, but it can't move in
  304. mountains.  Groundcars are ideal for defending your homeland from
  305. invasion.  If you have enough on hand, you can often bounce back even
  306. after many of your towns are captured."
  307. ))
  308.  
  309. (add saucer notes '(
  310. "Saucer.  The flying saucer is a weak but fast-moving aircraft.  Saucers
  311. are very cheap to produce; one use is to overwhelm stronger units with
  312. mob attacks.  They can even bombard a city to rubble, unless there's
  313. a Defender around.  Saucers are also good for recon, within their limited
  314. range."
  315. ))
  316.  
  317. (add defender notes '(
  318. "Defender.  A heavy, delta-wing aircraft that's your only safe defense
  319. against the enemy's swarms of saucers.  It uses aerodynamic lift to 
  320. supplement its drive, allowing it to carry relatively massive
  321. antisubmarine equipment.  But it's an easy target for ground units."
  322. ))
  323.  
  324. (add constructor notes '(
  325. "Constructor.  An automated airborn factory that can build a base from
  326. on-site materials in only one turn.  It can build a base anywhere, even
  327. on water or ice.  That means, for instance, that you can build bridges
  328. between islands for ground units.  The constructor is the only way
  329. to produce the sophisticated equipment needed for a twenty-second
  330. century base (you don't know how hard it is to refuel those saucers :-).
  331. But it's vulnerable to attack, especially from saucers."
  332. ))
  333.  
  334. (add mothership notes '(
  335. "Mother ship.  Expensive to build, but the only way to mount a major
  336. invasion.  A mother ship can carry lots of saucers, lots of ground
  337. units, a couple Defenders and a constructor, all at once.  (The constructor
  338. is useful for building stepping stone bases toward the enemy.)
  339. A mass attack is sure to bring down a mother ship, so it deserves
  340. saucer patrols--but you may have to forego patrols if you're trying
  341. for a surprise invasion."
  342. ))
  343.  
  344. (add transport-sub notes '(
  345. "Transport sub.  Carries only a few ground units, but much cheaper to
  346. produce than a mother ship.  This is how you get your troops to another
  347. island early in the game.  And since, like subs in the WWII period,
  348. it's invisible until bumped into, it's good for sneak raids on isolated
  349. outposts.  A transport submarine can't attack anything by itself."
  350. ))
  351.  
  352. (add attack-sub notes '(
  353. "Attack sub.  Strong against transport subs, and, if they're on the coast,
  354. ground units and cities.  It stays underwater and pokes its weapons out,
  355. which makes it relatively invulnerable to counterattack.  It's faster
  356. than a transport sub, and good for wide-ranging exploration.  And to top
  357. it off, it can carry several rockets to within easy range of enemy cities.
  358. On the other hand, all submarines have to be careful of Defenders."
  359. ))
  360.  
  361. (add rocket notes '(
  362. "Rocket.  Actually a remotely guided missile, which does a lot of damage
  363. to its target but vaporizes itself in the process.  One rocket is
  364. enough to take out most units--it's not quite enough by itself
  365. to down a mother ship.  Three rockets together are sufficient to pound
  366. a town back to a base.  Only occasionally will a rocket miss its target.
  367. Besides stomping cities, they're useful for eliminating enemy groundcars
  368. and Defenders just before an invasion.  Since rockets are easily
  369. shot down if spied in mid-flight, it's sensible to launch them from
  370. attack subs near their targets.  [Because of the way Xconq works,
  371. messages about rockets don't always make sense.]"
  372. ))
  373.  
  374. (game-module (instructions (
  375.   )))
  376.  
  377. (game-module (design-notes (
  378.   )))
  379.